home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-06-12 | 431 b | 22 lines |
-
- WRITEABLE= file_writable
- $(WRITEABLE):: $(WRITEABLE).c
- $(CC) $(CFLAGS) $(WRITEABLE).c -o $(WRITEABLE)
-
- install::
- $(STRIP) $(DYLD_APP_STRIP_OPTS) $(DSTROOT)$(INSTALLDIR)/$(NAME).app/$(WRITEABLE);
-
- .SUFFIXES: .strings
-
-
- .h.strings:
- if [ "$*" = "Localization" ]; then \
- /usr/bin/genstrings $*.h > English.lproj/$*.strings; \
- else \
- /usr/bin/genstrings -o English.lproj $*.h; \
- fi
-
-
- clean::
- rm English.lproj/*.strings
-